home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / devs / mountlist.mrtape < prev    next >
Text File  |  1994-06-06  |  2KB  |  34 lines

  1. /*  This is a mountlist entry for the SCSI tape handler provided with   */
  2. /*  MRBackup. Pay particular attention to the StartUp message. Its      */
  3. /*  format is:                                                          */
  4. /*      "<buffer_size>/<device_name>/<unit>/<luno>/<flags>"             */
  5. /*                                                                      */
  6. /*  where                                                               */
  7. /*      <buffer_size> is the total amount of buffer memory, specified   */
  8. /*      in K (K = 1024);                                                */
  9. /*                                                                      */
  10. /*      <device_name> is the SCSI device driver name;                   */
  11. /*                                                                      */
  12. /*      <unit> is the SCSI unit number;                                 */
  13. /*                                                                      */
  14. /*      <luno> is the SCSI logical unit number (not currently used but  */
  15. /*      must be set to zero);                                           */
  16. /*                                                                      */
  17. /*      <flags> is a set of bits controlling certain tape drive options */
  18. /*      The bit values, which may be added together are:                */
  19. /*                                                                      */
  20. /*          1   asynchronous mode, 0 = synchronous mode                 */
  21. /*          2   use on-board buffer, 0 = don't use on-board buffer      */
  22. /*                                                                      */
  23. /*          Example: to enable async mode and the on-board buffer, the  */
  24. /*          <flags> value would be 3 (1 + 2).                           */
  25. /*                                                                      */
  26. /*          Other flag bits will be provided as new features are added. */
  27.  
  28. MRTAPE: Handler = l:mrtape-handler
  29.         StartUp = "60/scsi.device/4/0/3"
  30.         Stacksize = 4000
  31.         Priority = 5
  32.         GlobVec = -1
  33. #
  34.